Skip to main content

Try Catch

The planned part is how the flow created within behaves when it gives an error.

It consists of three different parts.

  • Try:

    This part includes the process to be tried. Errors occur here.
  • Catch:

    This is the part where errors are caught. It is the section where it is arranged how the process will behave in case of multiple errors and in the error it gives.
  • Finally:

    It contains the parts that need to be done no matter what happens in the end. Even if an error occurs in the process being tried, this section always works.